Integer arithmetic operations in C programming byAdmin •11:44 #include<stdio.h> int main ( void ) { int a = 17 ,b = 4 ; printf( "Sum=%d \n " ,a + b); printf( "Difference=%d \n " ,a - b); printf( "Product=%d \n " ,a * b); printf( "Quotient=%d \n &…
Program to find out the size and limits of data types byAdmin •11:33 #include<stdio.h> #include<limits.h> #include<float.h> int main ( void ) { printf( "sizeof(char) = %u \n " , sizeof ( char )); printf( "sizeof(short) = %u \n " , sizeof ( short )); pri…